home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/python
- """
- This module sets up the configurator object which is shared
- by all the searchrep modules.
- """
-
- class SearchRepConfig:
- """
- this class used by searchRep modules to configure saved options
- and to set up the command and statistics files which are
- accessed by the modules.
- """
-
-
- def __init__ (self) :
-
- # set up current file
- self.filename = ""
-
-
-
- # create configurator object
- configurator = SearchRepConfig()
-
-